home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / msdos / lynx / source / doslynx / src / turlvi25.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-25  |  722 b   |  25 lines

  1. //    Copyright (c) 1994, University of Kansas, All Rights Reserved
  2. //
  3. //    Class:        TURLView
  4. //    Include File:    turlview.h
  5. //    Purpose:    Provide a view for any URL.
  6. //    Remarks/Portability/Dependencies/Restrictions:
  7. //    Revision History:
  8. //        03-29-94    created
  9. #include"turlview.h"
  10.  
  11. Boolean TURLView::isIndex()    {
  12. //    Purpose:    Return wether or not the view is a searchable index.
  13. //    Arguments:    void
  14. //    Return Value:    Boolean    True, view is searchable.
  15. //                False, view is not searchable.
  16. //    Remarks/Portability/Dependencies/Restrictions:
  17. //    Revision History:
  18. //        03-29-94    created
  19.  
  20.     //    Just call a WWW function....
  21.     if(HTAnchor_isIndex(HTp_HyperDoc->HTPAp_node_anchor) == YES)    {
  22.         return(True);
  23.     }
  24.     return(False);
  25. }